home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Format CD 7
/
Amiga Format AFCD07 (Dec 1996, Issue 91).iso
/
serious
/
shareware
/
comms
/
internet
/
web-related
/
apache_1.0.5
/
cgi-bin
/
uptime
< prev
next >
Wrap
Text File
|
1994-03-01
|
165b
|
15 lines
#!/bin/sh
UPTIME=/usr/ucb/uptime
echo Content-type: text/plain
echo
if [ -x $UPTIME ]; then
$UPTIME
else
echo Cannot find uptime command on this system.
fi